home *** CD-ROM | disk | FTP | other *** search
/ IRIX 6.5 Applications 2004 May / SGI IRIX 6.5 Applications 2004 May.iso / dist / java3d.idb / usr / demos / java / j3d / programs / examples / Timer / TimerTest.java.z / TimerTest.java
Encoding:
Java Source  |  2003-08-08  |  2.9 KB  |  80 lines

  1. /*
  2.  *    @(#)TimerTest.java 1.7 02/04/11 14:29:51
  3.  *
  4.  * Copyright (c) 1996-2002 Sun Microsystems, Inc. All Rights Reserved.
  5.  *
  6.  * Redistribution and use in source and binary forms, with or without
  7.  * modification, are permitted provided that the following conditions
  8.  * are met:
  9.  *
  10.  * - Redistributions of source code must retain the above copyright
  11.  *   notice, this list of conditions and the following disclaimer.
  12.  *
  13.  * - Redistribution in binary form must reproduce the above copyright
  14.  *   notice, this list of conditions and the following disclaimer in
  15.  *   the documentation and/or other materials provided with the
  16.  *   distribution.
  17.  *
  18.  * Neither the name of Sun Microsystems, Inc. or the names of
  19.  * contributors may be used to endorse or promote products derived
  20.  * from this software without specific prior written permission.
  21.  *
  22.  * This software is provided "AS IS," without a warranty of any
  23.  * kind. ALL EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND
  24.  * WARRANTIES, INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY,
  25.  * FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT, ARE HEREBY
  26.  * EXCLUDED. SUN AND ITS LICENSORS SHALL NOT BE LIABLE FOR ANY DAMAGES
  27.  * SUFFERED BY LICENSEE AS A RESULT OF USING, MODIFYING OR
  28.  * DISTRIBUTING THE SOFTWARE OR ITS DERIVATIVES. IN NO EVENT WILL SUN
  29.  * OR ITS LICENSORS BE LIABLE FOR ANY LOST REVENUE, PROFIT OR DATA, OR
  30.  * FOR DIRECT, INDIRECT, SPECIAL, CONSEQUENTIAL, INCIDENTAL OR
  31.  * PUNITIVE DAMAGES, HOWEVER CAUSED AND REGARDLESS OF THE THEORY OF
  32.  * LIABILITY, ARISING OUT OF THE USE OF OR INABILITY TO USE SOFTWARE,
  33.  * EVEN IF SUN HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
  34.  *
  35.  * You acknowledge that Software is not designed,licensed or intended
  36.  * for use in the design, construction, operation or maintenance of
  37.  * any nuclear facility.
  38.  */
  39.  
  40. import java.applet.Applet;
  41. import java.awt.Panel;
  42. import java.awt.TextArea;
  43. import com.sun.j3d.utils.applet.MainFrame;
  44. import com.sun.j3d.utils.timer.J3DTimer;
  45.  
  46. public class TimerTest extends Applet {
  47.  
  48.     long[] ticks = new long[10];
  49.     long[] sysTime = new long[ticks.length];
  50.  
  51.     public TimerTest() {
  52.     }
  53.  
  54.     public void init() {
  55.     Panel panel = new Panel();
  56.     String header = new String("              J3D Timer                System Timer\n");
  57.     TextArea textArea = new TextArea(header, 12, 35, TextArea.SCROLLBARS_NONE );    
  58.     panel.add(textArea);
  59.     this.add(panel);
  60.     
  61.  
  62.         for(int i=0; i<ticks.length; i++) {
  63.             ticks[i] = J3DTimer.getValue();
  64.             sysTime[i] = System.currentTimeMillis();
  65.         }
  66.     
  67.         for(int i=0; i<ticks.length; i++)
  68.             //System.out.println("tick "+ticks[i]+"    "+sysTime[i] );
  69.         textArea.append("tick "+ticks[i]+"    "+sysTime[i] + "\n" );
  70.         //System.out.println("Resolution "+J3DTimer.getResolution() );
  71.     textArea.append("Resolution "+J3DTimer.getResolution() + "\n" );
  72.  
  73.     }
  74.  
  75.     public static void main( String args[] ) {
  76.     new MainFrame(new TimerTest(), 380, 256);
  77.     }
  78.  
  79. }
  80.